import React from "react"; import type { FormErrorDisplayMode } from "../../core/Form/context"; export interface Props { onFinish: () => void; onReset?: () => void; children?: React.ReactNode; errorDisplayMode?: FormErrorDisplayMode; extraElements?: React.ReactNode; expandedArea?: React.ReactElement; loading?: boolean; reminder?: string; } interface State { expanded: boolean; } export declare class Filter extends React.PureComponent { static displayName: string; private readonly defaultErrorDisplayMode; private readonly storageKey; constructor(props: Props); toggleExpansion: () => void; render(): React.JSX.Element; } export {};