import * as React from 'react';
import type { Size } from './shared';
interface Props {
size: Size;
}
export declare const CheckMark: ({ size }: Props) => React.JSX.Element;
export declare const Indeterminate: ({ size }: Props) => React.JSX.Element;
export {};