import type { KyInstance } from 'ky';
export interface WithdrawInternalInput {
    amount: number;
    toUsername: string;
}
export interface WithdrawInternalOutput {
    id: string;
    createdAt: string;
    fromUid: string;
    toUid: string;
    amount: number;
}
type WithdrawInternal = (input: WithdrawInternalInput) => Promise<WithdrawInternalOutput>;
export declare const createWithdrawInternal: (instance: KyInstance) => WithdrawInternal;
export {};
//# sourceMappingURL=withdraw-internal.d.ts.map