import { SvelteComponent } from "svelte";
import type { StylingScarfFillingType } from '../../../../type/Filling/ScarfFilling/index.ts';
declare const __propDef: {
    props: {
        filling: StylingScarfFillingType;
    };
    events: {
        legendIdentifier: CustomEvent<any>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type ScarfPlotLegendProps = typeof __propDef.props;
export type ScarfPlotLegendEvents = typeof __propDef.events;
export type ScarfPlotLegendSlots = typeof __propDef.slots;
export default class ScarfPlotLegend extends SvelteComponent<ScarfPlotLegendProps, ScarfPlotLegendEvents, ScarfPlotLegendSlots> {
}
export {};
