export interface ToTypeProps { value: any; type: "string" | "boolean" | "array" | "object"; } export default function ToType({ value, type }: ToTypeProps): any;