import React from "react";
import { WithGuiTheme } from "../../assets/theme";
import { GuiInputProps } from "./GuiInput.type";
declare type WithStyled = (GuiInputProps & WithGuiTheme) | typeof React.forwardRef;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<React.PropsWithChildren<WithStyled> & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
