UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

12 lines (11 loc) 932 B
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<import("react").ReactNode> | Promise<string | number | bigint | boolean | import("react").ReactPortal | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined> | import("react/jsx-runtime").JSX.Element | null | undefined;