import { LitElement } from 'lit';
/**
 *  Recreation of native table and it's child elements. `<uui-table>` is a parent element to `<uui-table-head>` `<and uui-table-row>`. To make it fully accessible remember to add aria-label and aria-describedby.
 *  @element uui-table
 *  @slot - slot for `<uui-table-head>` and `<uui-table-row>` elements. Make a table out of them.
 */
export declare class UUITableElement extends LitElement {
    connectedCallback(): void;
    render(): import("lit-html").TemplateResult<1>;
    static styles: import("lit").CSSResult[];
}
declare global {
    interface HTMLElementTagNameMap {
        'uui-table': UUITableElement;
    }
}
