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