import { CategoryNFT, HederaEnvironment } from '@xact-wallet-sdk/nft';
export declare class HederaAccount {
    accountId: string;
    privateKey: string;
    environment: HederaEnvironment;
}
export declare class CustomFee {
    numerator: number;
    denominator: number;
    fallbackFee: number;
    collectorAccountId: string;
}
export declare class Metadata {
    name: string;
    symbol: string;
    category: CategoryNFT;
    creator: string;
    customRoyaltyFee?: CustomFee[] | null;
    customProperties?: Record<string, unknown> | null;
}
export declare class Configuration {
    nftStorageApiKey: string;
    hederaAccount: HederaAccount;
    metadata?: Metadata;
}
