import { IExportColumn, IExportMethod } from '../export.interface';
export interface IExportBooleanColumn extends IExportColumn {
    type: 'BOOLEAN';
    true?: string;
    false?: string;
}
export declare const ExportBooleanMethod: IExportMethod<IExportBooleanColumn, boolean>;
//# sourceMappingURL=boolean.d.ts.map