import { InputErrors } from '../../../spot-ui/src/index.ts'; export declare const useLimitPriceError: (limitPriceWei?: string) => { type: InputErrors; value: string; } | undefined; export declare const useLimitPrice: () => { amountUI: string; usd: string; error: { type: InputErrors; value: string; } | undefined; amount: string; typedValue: string | undefined; selectedPercentage: string; onChange: (typed?: string) => void; onPercentageChange: (percent?: string) => void; isTypedValue: boolean; }; export declare const useLimitPriceToggle: () => { isLimitPrice: boolean; toggleLimitPrice: () => void; hide: boolean; }; //# sourceMappingURL=use-limit-price.d.ts.map