import { TItemBoolean, SIZES } from '../../types';
interface IBooleanItemInput {
    title?: string;
    width?: SIZES;
    data: string;
}
export declare const createBooleanItem: ({ title, width, data, }: IBooleanItemInput) => TItemBoolean;
export {};
