import { MantineSize } from '../../../core'; export type ClearSectionMode = 'both' | 'rightSection' | 'clear'; export interface InputClearSectionProps { __clearable: boolean | undefined; __clearSection: React.ReactNode; rightSection: React.ReactNode; __defaultRightSection: React.ReactNode; size: MantineSize | string | undefined; __clearSectionMode: ClearSectionMode | undefined; } export declare function InputClearSection({ __clearable, __clearSection, rightSection, __defaultRightSection, size, __clearSectionMode, }: InputClearSectionProps): string | number | bigint | boolean | Iterable | Promise> | Iterable | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;