import React, { type ReactNode } from 'react';
import type { FunButtonProps } from '../../../components/FunButton/FunButton';
import { type ErrorNotification } from '../../../components/FunNotification/FunNotification';
interface InputAmountLayoutProps {
    actionButtonProps: FunButtonProps;
    fiatCurrencySelector?: ReactNode;
    amountOptions?: ReactNode;
    amountInput: ReactNode;
    amountInputSwitch: ReactNode;
    header?: ReactNode;
    footer?: ReactNode;
    error?: ErrorNotification;
}
export declare function InputAmountLayout({ actionButtonProps, amountOptions, fiatCurrencySelector, amountInput, amountInputSwitch, header, footer, error, }: InputAmountLayoutProps): React.JSX.Element;
export {};
