import type { CSSProperties } from 'react'; import { Size } from '../style'; export interface InputWrapProps { size: Size; focused?: boolean; disabled?: boolean; cursor?: CSSProperties['cursor']; block?: boolean; } export declare const InputPart: import("@emotion/styled-base").StyledComponent, HTMLSpanElement>, { stretch?: boolean | undefined; }, object>; declare const InputWrap: import("react").ForwardRefExoticComponent & { theme?: import("../style").Theme | undefined; } & import("react").RefAttributes>; export default InputWrap;