/**
 * Withdraw command for Filecoin Pay
 */
import { type CLIAuthOptions } from '../utils/cli-auth.js';
export interface WithdrawOptions extends CLIAuthOptions {
    amount: string;
}
export declare function runWithdraw(options: WithdrawOptions): Promise<void>;
//# sourceMappingURL=withdraw.d.ts.map