import * as React from "react"; import { QueueConfiguration } from "../../../state/QueuesState/QueuesStateTypes"; interface DailyMetricsResetProps { queueConfig: QueueConfiguration | null; onAdd: () => void; onRemove: () => void; onTimezoneChange: (timezone: string) => void; onTimeChange: (time: string) => void; disabled: boolean; } export declare class DailyMetricsReset extends React.PureComponent { render(): JSX.Element; } export {};