import { PropsWithChildren } from 'react'; import { CompoundInputContextProps, CompoundInputPosition } from './context'; type CompoundInputProps = PropsWithChildren & CompoundInputContextProps; declare function CompoundInput({ children, ...props }: CompoundInputProps): import("react").JSX.Element; declare namespace CompoundInput { var Default: typeof import("@/components/CompoundInput/components").Default; var Container: typeof import("@/components/CompoundInput/components").Container; var Title: typeof import("@/components/CompoundInput/components").Title; var InputAmount: typeof import("@/components/CompoundInput/components").InputAmount; var InputToken: typeof import("@/components/CompoundInput/components").InputToken; var MaxButton: typeof import("@/components/CompoundInput/components").MaxButton; var FiatValue: typeof import("@/components/CompoundInput/components").FiatValue; var TokenBalance: typeof import("@/components/CompoundInput/components").TokenBalance; var Error: typeof import("@/components/CompoundInput/components").Error; } export type { CompoundInputProps }; export { CompoundInput, CompoundInputPosition };