/**
 * Base definition of boolean used in flowbite-angular.
 */
export interface FlowbiteBoolean {
    enabled: string;
    disabled: string;
}
/**
 * This function cast a boolean to the internal flowbute-angular boolean type.
 *
 * @param value The input to be cast.
 * @returns enabled if value is true ; disabled if value is false.
 */
export declare function booleanToFlowbiteBoolean(value: boolean): keyof FlowbiteBoolean;
