import { FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from '@solana/kit';
export declare enum BondingCurveCreationType {
    Manual = 0,
    Launch = 1,
    Lockedlaunch = 2,
    Presale = 3
}
export type BondingCurveCreationTypeArgs = BondingCurveCreationType;
export declare function getBondingCurveCreationTypeEncoder(): FixedSizeEncoder<BondingCurveCreationTypeArgs>;
export declare function getBondingCurveCreationTypeDecoder(): FixedSizeDecoder<BondingCurveCreationType>;
export declare function getBondingCurveCreationTypeCodec(): FixedSizeCodec<BondingCurveCreationTypeArgs, BondingCurveCreationType>;
