export type PropertyType = 'boolean' | 'number' | 'string' | 'array' | 'object' | 'function'; export declare function checkType(value: unknown, type: PropertyType, error: string): void;