import { LitElement } from 'lit';
/**
 *  Table head element. Holds the styles for table head. Parent to uui-table-head-cell.
 *  @element uui-table-head
 *  @slot - slot for uui-table-head-cell elements.
 */
export declare class UUITableHeadElement extends LitElement {
    connectedCallback(): void;
    render(): import("lit").TemplateResult<1>;
    static styles: import("lit").CSSResult[];
}
declare global {
    interface HTMLElementTagNameMap {
        'uui-table-head': UUITableHeadElement;
    }
}
