import { IgrFragmentBase, IIgrFragmentBaseProps } from "./igr-fragment-base";
import { AreaFragment } from "./AreaFragment";
/**
 * Represents one part of a StackedAreaSeries.
*/
export declare class IgrAreaFragment extends IgrFragmentBase<IIgrAreaFragmentProps> {
    protected createImplementation(): AreaFragment;
    /**
                                 * @hidden
                                 */
    get i(): AreaFragment;
    constructor(props: IIgrAreaFragmentProps);
    /**
     * Gets whether the current series shows an area or line shape.
    */
    get isAreaOrLine(): boolean;
    /**
     * Gets whether the current series shows an area shape.
    */
    get isArea(): boolean;
}
export interface IIgrAreaFragmentProps extends IIgrFragmentBaseProps {
}
