import { TableCellProps as MUITableCellProps } from '@mui/material/TableCell';
import React, { ReactNode } from 'react';
export interface BodyCellProps extends MUITableCellProps {
    /** Content for the cell */
    content: ReactNode;
    /** Data-qa tag to apply to the search bar and input element */
    'data-qa'?: string;
    /** Custom CSS classes to pass to the button */
    customclasses?: string | string[];
}
/**
 * Constructs a table body cell using pre-defined Rijkswaterstaat styling
 *
 * @param props Props to pass to the body cell
 * @example
 * ```jsx
 * <BodyCell content='Cool Content' />
 * ```
 */
export declare const BodyCell: React.MemoExoticComponent<({ customclasses, scope, component, content, "data-qa": dataQa, ...props }: BodyCellProps) => JSX.Element>;
//# sourceMappingURL=index.d.ts.map