import React from "react";
import GuiTableCellProps from "./type";
import { WithGuiTheme } from "../../../assets/theme";
declare type WithStyled = GuiTableCellProps & WithGuiTheme;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiTableCellProps & WithGuiTheme & {
    children?: React.ReactNode;
} & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
