import { PropertyValueMap } from 'lit';
import { DdsElement } from '../../../../internal/dds-hu-element';
/**
 * `dap-ds-icon-file-copy-line`
 * @summary An icon
 * @element dap-ds-icon-file-copy-line
 * @title - DocumentFileCopyLine
 * @group icon
 * @icontype document
 *
 * @attribute {number} size - (optional) The width and height in pixels
 * @attribute {boolean} selected - (optional) Sets the icon color via the `fill` attribute
 * @attribute {string} accessibilityTitle - (optional) When using the icon standalone, make it meaningful for accessibility
 * @attribute {boolean} focusable - (optional) If `true` the icon can receive focus
 *
 * @csspart base - The main icon container.
 */
export default class DocumentFileCopyLine extends DdsElement {
    static tagName: string;
    /** (optional) The width and height in pixels */
    size?: number | undefined;
    /** (optional) Sets the icon color via the `fill` attribute */
    selected?: boolean;
    /** (optional) When using the icon standalone, make it meaningful for accessibility */
    accessibilityTitle?: string;
    /** (optional) If `true` the icon can receive focus */
    focusable?: boolean;
    static readonly styles: import('lit').CSSResult;
    protected firstUpdated(_changedProperties: PropertyValueMap<any> | Map<PropertyKey, unknown>): void;
    render(): import('lit-html').TemplateResult;
}
