import * as React from 'react'; import { PickerLayoutOwnerState, PickersLayoutProps } from "./PickersLayout.types.js"; import { PickerValidValue } from "../internals/models/index.js"; export declare const PickersLayoutRoot: import("@emotion/styled").StyledComponent & { ownerState: PickerLayoutOwnerState; }, Pick, HTMLDivElement>, keyof React.HTMLAttributes | keyof React.ClassAttributes>, {}>; export declare const PickersLayoutContentWrapper: import("@emotion/styled").StyledComponent & { ownerState: PickerLayoutOwnerState; }, Pick, HTMLDivElement>, keyof React.HTMLAttributes | keyof React.ClassAttributes>, {}>; type PickersLayoutComponent = ((props: PickersLayoutProps & React.RefAttributes) => React.JSX.Element) & { propTypes?: any; }; /** * Demos: * * - [Custom layout](https://mui.com/x/react-date-pickers/custom-layout/) * * API: * * - [PickersLayout API](https://mui.com/x/api/date-pickers/pickers-layout/) */ declare const PickersLayout: PickersLayoutComponent; export { PickersLayout };