import { TextFieldSize } from '../types.js'; interface UseTextFieldStyleOptions { size: TextFieldSize; withStartSlot?: boolean; withEndSlot?: boolean; borderRadiusRatio: number; } declare const useTextFieldStyle: ({ size, withEndSlot, withStartSlot, borderRadiusRatio, }: UseTextFieldStyleOptions) => { input: { fontSize: number; paddingTop: number; paddingBottom: number; borderRadius: number; paddingLeft: number; paddingRight: number; color: string; }; }; export { useTextFieldStyle };