/** * Validation Utility Functions */ /** * Type guard to check if value is string */ export declare const isString: (value: unknown) => value is string; /** * Type guard to check if value is defined (not undefined) */ export declare const isDefined: (value: T | undefined) => value is T; /** * Type guard to check if value is number */ export declare const isNumber: (value: unknown) => value is number; /** * Helper function to get all valid provider types as array */ export declare const getValidProviders: () => string[]; //# sourceMappingURL=validation.d.ts.map