export type AppUrls = {
    readonly step: string;
    readonly stepEditor: string;
};
export declare class AppUrlsData implements Required<AppUrls> {
    private _urls;
    /** @internal */
    constructor(urls: AppUrls);
    get step(): string;
    getStep(): string;
    /** @deprecated */
    setStep(step: string): void;
    get stepEditor(): string;
    getStepEditor(): string;
    /** @deprecated */
    setStepEditor(stepEditor: string): void;
    /** @internal */
    toObject(): AppUrls;
    /** @internal */
    toJSON(): AppUrls;
    /** @internal */
    toString(): string;
}
