import { LitElement } from 'lit';
/**
 *  @element uui-file-symbol
 */
export declare class UUISymbolFileElement extends LitElement {
    /**
     * The text that will appear on the file icon
     * @type {string}
     */
    type: string;
    render(): import("lit-html").TemplateResult<1>;
    static styles: import("lit").CSSResult[];
}
declare global {
    interface HTMLElementTagNameMap {
        'uui-symbol-file': UUISymbolFileElement;
    }
}
