import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
import type { Message } from "@bufbuild/protobuf";
/**
 * Describes the file common.proto.
 */
export declare const file_common: GenFile;
/**
 * @generated from message common.TokenLamports
 */
export type TokenLamports = Message<"common.TokenLamports"> & {
    /**
     * @generated from field: uint64 amount = 1;
     */
    amount: bigint;
    /**
     * @generated from field: uint32 decimals = 2;
     */
    decimals: number;
};
/**
 * Describes the message common.TokenLamports.
 * Use `create(TokenLamportsSchema)` to create a new message.
 */
export declare const TokenLamportsSchema: GenMessage<TokenLamports>;
/**
 * @generated from message common.Decimal
 */
export type Decimal = Message<"common.Decimal"> & {
    /**
     * @generated from field: string value = 1;
     */
    value: string;
};
/**
 * Describes the message common.Decimal.
 * Use `create(DecimalSchema)` to create a new message.
 */
export declare const DecimalSchema: GenMessage<Decimal>;
/**
 * @generated from message common.TokenAddress
 */
export type TokenAddress = Message<"common.TokenAddress"> & {
    /**
     * @generated from field: string mint = 1;
     */
    mint: string;
};
/**
 * Describes the message common.TokenAddress.
 * Use `create(TokenAddressSchema)` to create a new message.
 */
export declare const TokenAddressSchema: GenMessage<TokenAddress>;
/**
 * @generated from message common.UnixTimestamp
 */
export type UnixTimestamp = Message<"common.UnixTimestamp"> & {
    /**
     * @generated from field: int64 timestamp = 1;
     */
    timestamp: bigint;
};
/**
 * Describes the message common.UnixTimestamp.
 * Use `create(UnixTimestampSchema)` to create a new message.
 */
export declare const UnixTimestampSchema: GenMessage<UnixTimestamp>;
/**
 * @generated from enum common.QuoteKind
 */
export declare enum QuoteKind {
    /**
     * @generated from enum value: SOL = 0;
     */
    SOL = 0,
    /**
     * @generated from enum value: USDC = 1;
     */
    USDC = 1
}
/**
 * Describes the enum common.QuoteKind.
 */
export declare const QuoteKindSchema: GenEnum<QuoteKind>;
