export interface CheckboxIconProps extends React.ComponentProps<'svg'> {
    indeterminate: boolean | undefined;
}
export interface CheckIconProps extends React.ComponentProps<'svg'> {
    size?: number | string;
}
export declare function CheckIcon({ size, style, ...others }: CheckIconProps): import("react/jsx-runtime").JSX.Element;
export declare function CheckboxIcon({ indeterminate, ...others }: CheckboxIconProps): import("react/jsx-runtime").JSX.Element;
