declare class DataCleaner { static getBooleanData(data: boolean | string): { isValid: boolean; data: boolean; }; } export default DataCleaner;