import { IgrFragmentBase, IIgrFragmentBaseProps } from "./igr-fragment-base";
import { LineFragment } from "./LineFragment";
/**
 * Represents one part of a StackedLineSeries.
*/
export declare class IgrLineFragment extends IgrFragmentBase<IIgrLineFragmentProps> {
    protected createImplementation(): LineFragment;
    /**
                                 * @hidden
                                 */
    get i(): LineFragment;
    constructor(props: IIgrLineFragmentProps);
    /**
     * 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;
}
export interface IIgrLineFragmentProps extends IIgrFragmentBaseProps {
}
