import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
 * Describes the file google/type/fraction.proto.
 */
export declare const file_google_type_fraction: GenFile;
/**
 * Represents a fraction in terms of a numerator divided by a denominator.
 *
 * @generated from message google.type.Fraction
 */
export type Fraction = Message<"google.type.Fraction"> & {
    /**
     * The numerator in the fraction, e.g. 2 in 2/3.
     *
     * @generated from field: int64 numerator = 1;
     */
    numerator: bigint;
    /**
     * The value by which the numerator is divided, e.g. 3 in 2/3. Must be
     * positive.
     *
     * @generated from field: int64 denominator = 2;
     */
    denominator: bigint;
};
/**
 * Describes the message google.type.Fraction.
 * Use `create(FractionSchema)` to create a new message.
 */
export declare const FractionSchema: GenMessage<Fraction>;
