import { CSSObject } from '@emotion/react'; import { Typography } from '../../../foundation'; import { ButtonProps } from '../../button'; import { StackProps } from '../../stack'; import { DisplayMode } from '../types'; interface DatePickerAttributes { maxHeight: number; panelSize: { width: number; height: number; }; cellSize: number; caption: { kind: Typography; arrow: { size: number; width: number; height: number; }; style?: CSSObject; }; footer: { button: Partial; container: Partial & { style?: CSSObject; }; }; } export declare function useDatePickerAttributes(displayMode: DisplayMode): DatePickerAttributes; export {};