import type { Struct, bool, u8 } from '@polkadot/types-codec';
import type { Balance, Perbill } from '@polkadot/types/interfaces/runtime';
/** @name WeightToFeeCoefficient */
export interface WeightToFeeCoefficient extends Struct {
    readonly coeffInteger: Balance;
    readonly coeffFrac: Perbill;
    readonly negative: bool;
    readonly degree: u8;
}
export type PHANTOM_SUPPORT = 'support';
