import { default as React } from 'react'; export interface RowItemProps { /** * When `true`, the row item shrinks to content size of its children. * Otherwise, the item will expand to fill remaining space in the row. */ shrink?: boolean; /** The html element to render as the root node of `Row` */ as?: "div" | "span" | "li"; /** Optional: controls className while maintaining default nds-row-item styling if left unspecified */ className?: string; children?: React.ReactNode; /** Optional value for `data-testid` attribute */ testId?: string; } /** * Child component of `Row`. * When a `Row.Item` has a boolean prop of `shrink`, it will shrink to content width. */ declare const RowItem: ({ shrink, as, className, children, testId, }: RowItemProps) => React.JSX.Element; export default RowItem; //# sourceMappingURL=RowItem.d.ts.map