/// <reference types="react" />
export interface SimpleCellFormatterProps {
    value: string | number | boolean;
}
export declare function SimpleCellFormatter({ value }: SimpleCellFormatterProps): JSX.Element;