import { EosEntityName, EosAsset, EosActionStruct, EosDecomposeReturn, EosAuthorizationStruct } from '../../../models'; export interface CreateAccountNativeParams { accountName: EosEntityName; creatorAccountName: EosEntityName; creatorPermission: EosEntityName; authOwner: EosAuthorizationStruct; authActive: EosAuthorizationStruct; ramBytes: number; stakeNetQuantity: EosAsset; stakeCpuQuantity: EosAsset; transfer: boolean; } export declare const composeAction: ({ accountName, creatorAccountName, creatorPermission, authOwner, authActive, ramBytes, stakeNetQuantity, stakeCpuQuantity, transfer, }: CreateAccountNativeParams) => EosActionStruct[]; export declare const decomposeAction: (action: EosActionStruct) => EosDecomposeReturn;