import { FC } from '@dineug/r-html';
export type ColumnOptionProps = {
    class?: any;
    focus: boolean;
    width: number;
    checked: boolean;
    text: string;
    title?: string;
};
declare const ColumnOption: FC<ColumnOptionProps>;
export default ColumnOption;
