import { Mixins, Palette, Shadows, Theme, Transitions, ZIndex } from '@mui/material'; import { Typography } from '@mui/material/styles/createTypography'; interface IStyledProps { theme: { mixins: Mixins; palette: Palette; shadows: Shadows; transitions: Transitions; typography: Typography; zIndex: ZIndex; unstable_strictMode?: boolean; }; ownerState: { size: "small" | "medium"; variant?: "outlined" | "filled" | "standard"; }; } export declare const StyledInput: import("@emotion/styled").StyledComponent<(import("@mui/material").TextFieldProps & import("@mui/system").MUIStyledCommonProps) & IStyledProps, {}, {}>; export declare const calHeight: (size: string) => any; export {};