import React from 'react';
interface DydxSwitchTabProps {
    onSwitch: (() => void) | undefined;
    showSwitch: boolean;
    onClose?: () => void;
}
export declare function DydxSwitchTabInternal({ limitLabel, onSwitch, }: {
    limitLabel: string;
    onSwitch: () => void;
}): React.JSX.Element;
export declare function DydxSwitchTab({ onSwitch, showSwitch, onClose, }: DydxSwitchTabProps): React.JSX.Element | null;
export {};
