import { default as React } from 'react'; export type TableCheckboxProps = { name: string; checked: boolean; handleCheck: () => void; /** Optional prop to add a test id to the TableCheckbox for QA testing */ qaTestId?: string; }; declare const TableCheckbox: ({ name, checked, handleCheck, qaTestId, }: TableCheckboxProps) => React.JSX.Element; export default TableCheckbox;