import { default as React } from 'react';
export declare const InputPanel: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement>, "children"> & {
    label: string;
    type: "radio" | "checkbox";
    amount?: string;
    description?: React.ReactNode;
    alwaysOpen?: boolean;
    extraLabel?: string;
    children?: React.ReactNode;
} & React.RefAttributes<HTMLInputElement>>;
