type IsDivisibleBy = { (other: number): (value: unknown) => value is number; (other: number, value: unknown): value is number; }; /** * Asserts that a value is a `Number` which results in a whole number when divided by another. * * @tags guard, numbers */ export declare const isDivisibleBy: IsDivisibleBy; export {};