/*
 * Author: Andrieiev Danil |  danssg08@gmail.com | https://github.com/DanilAndreev
 * Copyright (C) 2020.
 */

/// <reference types="react" />
import {TableProps} from "@material-ui/core";

export const displayName: string;

/**
 * Table - react component, designed to provide table functional.
 * @param {TableProps} props
 * @constructor
 * @see http://material-docs.com/component-apis/table
 * @example
 * <Table>
 *     ...
 * </Table>
 */
export default function Table(props: TableProps): JSX.Element;