import { INPUT_OPTION } from './options';
import { MarginType, WidthType } from '../../../types/styleType';
type StyleType = WidthType & MarginType & {
    size: keyof typeof INPUT_OPTION;
    disabled?: boolean;
};
export declare const InputStyle: ({ size, disabled, ...props }: StyleType) => import("@emotion/utils").SerializedStyles;
export declare const InputNumberStyle: (props: StyleType) => import("@emotion/utils").SerializedStyles;
export {};
