import React from 'react';
import type { PerpsTransferForm } from './usePerpsTransferForm';
/**
 * The notice line + Transfer button under the transfer rows, rendered from
 * {@link usePerpsTransferForm} state. The in-modal `PerpsTransferStep` portals
 * this into the modal's bottom section; the standalone screen renders it in
 * its `Dialog.BottomSection`.
 */
export declare function PerpsTransferBottomBar({ form }: {
    form: PerpsTransferForm;
}): React.JSX.Element;
