import * as SS from 'styled-system';
import { BgProps, DisableBrProps } from '../styles/system';
export type DataRowProps = {
/** disableUnderline prop allows to disable underline (/bottom border).
* useful for last row in a "table" or for row that is used as a "head". */
disableUnderline?: boolean;
} & SS.PaddingProps & SS.MarginProps & SS.HeightProps & SS.WidthProps & SS.MinWidthProps & SS.PositionProps & BgProps & DisableBrProps;
/**
* A Data Row is used to display a row of data.
* It can be used with `DataRowProvider` and `HeadCol`.
* `DataRowProvider` is used to pass sorting state to its inner component.
* It is also used to display data more precisely on mobile devices.
* `HeadCol` is used display column of header row.
* It can be for sorting the column of multiple row.
* `StickyColContainer` is used to display specific columns at all times while the user scrolls.
*
* `StickyHeadContainer` is used to display Header at all times while the user scrolls.
*/
export declare const DataRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
/** disableUnderline prop allows to disable underline (/bottom border).
* useful for last row in a "table" or for row that is used as a "head". */
disableUnderline?: boolean | undefined;
} & SS.PaddingProps>> & SS.MarginProps>> & SS.HeightProps>, import("csstype").Property.Height> & SS.WidthProps>, import("csstype").Property.Width> & SS.MinWidthProps>, import("csstype").Property.MinWidth> & SS.PositionProps>> & BgProps & DisableBrProps, never>;