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