/// interface ISelectorProps { /** @ignore */ className?: string; /** If true, do not accept future dates (beyond today). */ nofuture?: boolean; value: any; /** If true, selector opens above the input. */ upward: boolean; /** If true, selector opens to the right of the input. */ right: boolean; /** Callback to call when date is selected, or selector is cancelled. */ onSelect: any; } declare const Selector: import("styled-components").StyledComponent<(props: ISelectorProps) => JSX.Element, import("../../../styles/Theme").IThemeInterface, {}, never>; export { Selector };