import { BasedFinderHeaderProps, BasedFinderProps } from '../BasedFinder/index.js'; import { IconProps } from '../Icon/index.js'; import { ReactNode } from 'react'; import { ContentEditorProps } from '../ContentEditor/index.js'; export declare const Finder: React.FC<{ children?: ReactNode | ((props: { type: string; section: string; name?: string; icon?: IconProps['variant']; counter?: number; id: number; }) => ReactNode); section: string; counter?: number; disabled?: boolean; exclude?: string[]; include?: string[]; transformFields?: ContentEditorProps['transformFields']; onSubmit?: ContentEditorProps['onSubmit']; onChange?: ContentEditorProps['onSubmit']; } & Partial & Partial>;