import React from 'react'; import { NativeAttributes } from '../Box'; export interface TableRowProps extends NativeAttributes<'tr'> { /** Whether the row should appear as selected. Defaults to `false` */ selected?: boolean; /** @ignore */ children: React.ReactNode; } declare const _default: React.MemoExoticComponent & React.RefAttributes>>; export default _default;