import type { FunctionComponent } from 'react'; interface Props { className?: string; disabled?: boolean; onClick: () => void; title: string; } export declare const CloseButtonV2: FunctionComponent; export {};