import type { IOptionToggle } from "../structures/IOptionToggle"; import type { ITransformOptions } from "../structures/ITransformOptions"; interface OptionsPanelProps { options: ITransformOptions; onChange: (next: ITransformOptions) => void; onClose: () => void; /** Defaults to the typia + lint pair from `DEFAULT_OPTION_TOGGLES`. */ toggles?: readonly IOptionToggle[]; /** Dialog heading. Defaults to "Transform Options". */ title?: string; } export declare function OptionsPanel({ options, onChange, onClose, toggles, title, }: OptionsPanelProps): import("react/jsx-runtime").JSX.Element; export {};