/**
 * Type guard that narrows a `SchemaObject` to the variant whose `type` is
 * `'number'`.
 *
 * Note: this guard matches `'number'` exclusively. Use `isIntegerSchema` for
 * integers, or `isNumericSchema` to match both `'number'` and `'integer'`.
 *
 * Works with `SchemaObject` types from OpenAPI 2.0, 3.0, 3.1, and 3.2.
 */
export declare const isNumberSchema: <T>(schema: T) => schema is [Extract<T, {
    type: "number";
}>] extends [never] ? T & {
    type: "number";
} : Extract<T, {
    type: "number";
}>;
//# sourceMappingURL=is-number-schema.d.ts.map