import React from 'react'; export type Props = { label: string; value: boolean; onChange: (value: boolean) => void; }; export declare const SwitchFilter: ({ label, value, onChange }: Props) => React.JSX.Element;