import * as React from 'react'; import type { HTMLProps } from '../utils/utilityTypes'; import type { BasePickerContainerProps } from './interface'; export interface PickerContainerCssVars { '--header-height': React.CSSProperties['height']; '--header-font-size': React.CSSProperties['fontSize']; '--header-background': React.CSSProperties['background']; '--header-title-text-color': React.CSSProperties['color']; '--header-submit-text-color': React.CSSProperties['color']; '--header-cancel-text-color': React.CSSProperties['color']; } export declare type PickerContainerProps = BasePickerContainerProps & HTMLProps; declare const PickerContainer: React.ForwardRefExoticComponent & React.RefAttributes>; export default PickerContainer;