import { CSSProperties } from "react"; import { StyledSystemProps } from "../../styling"; interface CssProps { className?: string; style?: CSSProperties; } declare type ExtractWrapperPropsType = T extends { wrapperProps?: infer TWrapperProps; } ? TWrapperProps : Record; declare type WrapperStyledSystemProps = Pick; declare type MoveContextStylePropsToWrapperProps = CssProps & TProps; export declare function adaptInputStylingProps, TContextProps extends Record>(inputProps: TInputProps, contextProps: TContextProps): import("type-fest").UnionToIntersection<{ wrapperProps: import("type-fest").UnionToIntersection | CssProps | (ExtractWrapperPropsType & WrapperStyledSystemProps)>; } | Omit, "filter" | "display" | "visibility" | "grid" | "left" | "right" | "height" | "width" | "alignContent" | "alignItems" | "alignSelf" | "backgroundColor" | "backgroundColorActive" | "backgroundColorFocus" | "backgroundColorHover" | "border" | "borderBottom" | "borderBottomActive" | "borderBottomFocus" | "borderBottomHover" | "borderBottomLeftRadius" | "borderBottomRightRadius" | "borderActive" | "borderFocus" | "borderHover" | "borderLeft" | "borderLeftActive" | "borderLeftFocus" | "borderLeftHover" | "borderRadius" | "borderRight" | "borderRightActive" | "borderRightFocus" | "borderRightHover" | "borderTop" | "borderTopActive" | "borderTopFocus" | "borderTopHover" | "borderTopLeftRadius" | "borderTopRightRadius" | "boxShadow" | "boxShadowActive" | "boxShadowFocus" | "boxShadowHover" | "columnGap" | "cursor" | "cursorHover" | "flex" | "flexBasis" | "flexDirection" | "flexFlow" | "flexGrow" | "flexShrink" | "flexWrap" | "gap" | "gridArea" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridColumn" | "gridColumnEnd" | "gridColumnSpan" | "gridColumnStart" | "gridRow" | "gridRowEnd" | "gridRowSpan" | "gridRowStart" | "gridTemplate" | "gridTemplateAreas" | "gridTemplateColumns" | "gridTemplateRows" | "justifyContent" | "justifyItems" | "justifySelf" | "margin" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "marginX" | "marginY" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "opacityActive" | "opacityFocus" | "opacityHover" | "order" | "outline" | "outlineFocus" | "overflow" | "overflowX" | "overflowY" | "padding" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "paddingX" | "paddingY" | "pointerEvents" | "position" | "rowGap" | "top" | "verticalAlign" | "willChange" | "zIndex"> & { wrapperProps: ExtractWrapperPropsType & WrapperStyledSystemProps; }, "wrapperProps"> | Omit, "className" | "style"> & { wrapperProps: CssProps; }, "wrapperProps">>; export {};