@mui/x-date-pickers
Version:
The community edition of the MUI X Date and Time Picker components.
7 lines • 475 B
text/typescript
import { PickerLayoutOwnerState, PickersLayoutProps, SubComponents } from "./PickersLayout.types.mjs";
import { PickerValidValue } from "../internals/models/index.mjs";
interface UsePickerLayoutResponse<TValue extends PickerValidValue> extends SubComponents<TValue> {
ownerState: PickerLayoutOwnerState;
}
declare const usePickerLayout: <TValue extends PickerValidValue>(props: PickersLayoutProps<TValue>) => UsePickerLayoutResponse<TValue>;
export default usePickerLayout;