type TCondition = boolean | (() => boolean); export declare function or(...conditions: TCondition[]): boolean; export {};