import React from "react"; import { ButtonProps } from "antd"; import { Dayjs } from "dayjs"; import "./index.less"; 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; } declare const ActionBar: (props: ActionBarProps) => React.JSX.Element; export default ActionBar;