export interface DerivedKey {
    wif: string;
    address: string;
    publicKey: string;
    counterpartyPubKey: string;
    invoice: string;
}
export interface Type42KeyDerivationProps {
    privateKey?: string;
    onKeyDerived?: (derivedKey: DerivedKey) => void;
    className?: string;
}
export declare function Type42KeyDerivation({ privateKey, onKeyDerived, className, }: Type42KeyDerivationProps): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Type42KeyDerivation.d.ts.map