import * as React from 'react'; export interface TrCheckboxProps { readonly rowId?: string; readonly checkboxLabel?: string; readonly inHead: boolean; } declare const TrCheckbox: React.FC; export default TrCheckbox;