import type { Path } from "../../common/CustomTypes/Path";
import type { ConnectionBase } from "./Common";
export declare type CDNStorageType = 'connection.dependency.cdn-storage';
export interface CDNStorage extends ConnectionBase {
    type: CDNStorageType;
    bucketRoot: Path | '';
    route: string;
}
export declare const isCDNStorage: import("@altostra/type-validations").ObjectOfTypeValidation<CDNStorage>;
