import { Construct } from "constructs"; declare abstract class CorsSettingValue { static readonly ANY: string; static from(scope: Construct, ...values: string[]): string; protected static errorMessage: string; } export declare class CorsOrigins extends CorsSettingValue { protected static errorMessage: string; } export declare class CorsMethods extends CorsSettingValue { protected static errorMessage: string; } export declare class CorsHeaders extends CorsSettingValue { protected static errorMessage: string; } export {};