/**
 * @file index.tsx
 *
 * @fileoverview Datatable component, displays information in a tabular way.
 */
import React from 'react';
export interface DatatableProps {
    /**
     * Text for the button
     *
     * @default null
     */
    children?: React.ReactNode;
}
/**
 * A data table can be used to show tabular data to a user. A list of jobs on a job management screen or a
 * list of job alerts the user has saved. Data in a table could be sorted, include filters, or include pagination to make it easier
 * for the user to filter down the data.
 */
export declare const Datatable: ({ children }: DatatableProps) => JSX.Element;
