import type { ComponentProps } from 'react'; import React from 'react'; import { Dropdown } from '../../ui/dropdown'; type MetricsTableOptionsProps = { onViewAllClick?: () => void; onResetClick?: () => void; onExportClick?: (sourceType: string) => void; } & ComponentProps; export declare const MetricsTableOptions: (props: MetricsTableOptionsProps) => React.JSX.Element; export {};