import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        point?: string | undefined | undefined;
        icon?: string | import("@fortawesome/fontawesome-common-types").IconDefinition | null | undefined;
        completed?: boolean | undefined;
        classes?: {
            root?: string;
            label?: string;
            line?: string;
            point?: string;
            /** Apply classes to completed item point and line leading up to item */
            completed?: string;
        } | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
        point: {};
    };
};
export type StepProps = typeof __propDef.props;
export type StepEvents = typeof __propDef.events;
export type StepSlots = typeof __propDef.slots;
export default class Step extends SvelteComponentTyped<StepProps, StepEvents, StepSlots> {
}
export {};
