export declare function asDate(input: any): Date | null;
export declare function asNumber(input: any): number;
export declare function asString(input: any): string;
export declare function asNullableString(input: any): string | undefined;
export declare function asBool(input: any): boolean;
