import React from 'react'; import { ButtonProps } from 'antd'; import { Dayjs } from 'dayjs'; import './index.less'; export interface DateRangeTimeInputProps { value?: string; onChange?: (value: string) => void; slice?: number; theme?: 'light' | 'dark'; className?: string; popoverClassName?: string; popupContainerClassName?: string; [key: string]: any; } interface ActionBarProps { ownerState: any; onCancel: () => void; onChange: (val: any[], type?: 'time') => void; onOk: () => void; value: any[]; showTime?: boolean | { defaultValue: Dayjs; [key: string]: any; }[]; okButtonProps?: ButtonProps; cancelButtonProps?: ButtonProps; isDesktop: boolean; timeInputComponent?: React.ComponentType; timeInputProps?: Omit; } declare const ActionBar: (props: ActionBarProps) => React.JSX.Element; export default ActionBar;