import React from 'react';
import type { PerpsTransferForm } from './usePerpsTransferForm';
/**
 * The From/To account rows with the direction-swap button between them —
 * the body of the Perps ⇄ Predictions transfer screen, rendered from
 * {@link usePerpsTransferForm} state.
 */
export declare function PerpsTransferRows({ form }: {
    form: PerpsTransferForm;
}): React.JSX.Element;
