import * as types from "../types";
export interface FeeFields {
    basisPoints: number;
}
export interface FeeJSON {
    basisPoints: number;
}
export declare class Fee {
    readonly basisPoints: number;
    constructor(fields: FeeFields);
    static layout(property?: string): import("buffer-layout").Layout<unknown>;
    static fromDecoded(obj: any): types.Fee;
    static toEncodable(fields: FeeFields): {
        basisPoints: number;
    };
    toJSON(): FeeJSON;
    static fromJSON(obj: FeeJSON): Fee;
    toEncodable(): {
        basisPoints: number;
    };
}
//# sourceMappingURL=Fee.d.ts.map