import { IParkingLocation } from "../ParkingInterface";
import { ITskParkingSectionLevel } from "../../schema-definitions/datasources/interfaces/ITskParkingSectionLevel";
import { AbstractTransformation } from "@golemio/core/dist/helpers/transformation/AbstractTransformation";
export declare class TskParkingSectionLevelTransformation extends AbstractTransformation<ITskParkingSectionLevel, IParkingLocation> {
    private readonly specialAccess?;
    name: string;
    constructor(specialAccess?: string | undefined);
    protected transformInternal: (zone: ITskParkingSectionLevel) => IParkingLocation;
}
