1
0
Fork 0
react-playground/node_modules/@mui/x-date-pickers/PickersLayout/usePickerLayout.d.ts
Techognito fc0f69dacb Added Statistics calculation
Statistics now show calculated values
2025-09-04 17:30:00 +02:00

7 lines
No EOL
473 B
TypeScript

import { PickerLayoutOwnerState, PickersLayoutProps, SubComponents } from "./PickersLayout.types.js";
import { PickerValidValue } from "../internals/models/index.js";
interface UsePickerLayoutResponse<TValue extends PickerValidValue> extends SubComponents<TValue> {
ownerState: PickerLayoutOwnerState;
}
declare const usePickerLayout: <TValue extends PickerValidValue>(props: PickersLayoutProps<TValue>) => UsePickerLayoutResponse<TValue>;
export default usePickerLayout;