import { SourceType, RequestMethod, EnumFilterType, EnumSourceType } from '../types'; export interface IProps { testId?: string; source: SourceType | EnumSourceType; onSetSource: (value: any) => void; filter: RequestMethod | EnumFilterType.All; onSetFilter: (value: RequestMethod | EnumFilterType.All) => void; } export declare const Settings: (props: IProps) => JSX.Element;