import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface CalendarQuickSelectProps extends Omit, 'onClick'> { /** * The id of active quick select button. */ activeId?: string; /** * The options for quick select buttons. */ options: { id: string; name: string; disabled?: boolean; onClick: VoidFunction; }[]; } /** * The react component for `mezzanine` calendar quick select. */ declare function CalendarQuickSelect(props: CalendarQuickSelectProps): import("react/jsx-runtime").JSX.Element; export default CalendarQuickSelect;