import { IgcFragmentBaseComponent } from "./igc-fragment-base-component";
import { LineFragment } from "./LineFragment";
/**
 * Represents one part of a StackedLineSeries.
*/
export declare class IgcLineFragmentComponent extends IgcFragmentBaseComponent {
    protected createImplementation(): LineFragment;
    /**
                                 * @hidden
                                 */
    get i(): LineFragment;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcLineFragmentComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets whether the current series shows only line shapes.
    */
    get isLineOnly(): boolean;
    /**
     * Gets whether the current series shows an area or line shape.
    */
    get isAreaOrLine(): boolean;
}
