export declare const checkEmptyOrOneOf: (value: T, possibleValues: readonly T[], error: string) => void; export declare const checkEmptyOrPattern: (value: unknown, pattern: RegExp, errorMessage: string) => void; export declare const checkEmptyOrType: (value: unknown, type: import("./check-type").PropertyType, error: string) => void; export declare const checkEmptyOrUrl: (value: unknown, error: string) => void; export * from './check-non-empty'; export * from './check-one-of'; export * from './check-pattern'; export * from './check-type'; export * from './check-url';