import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class StageKey { StageName?: Value; RestApiId?: Value; constructor(properties: StageKey); } export interface ApiKeyProperties { Description?: Value; StageKeys?: List; Value?: Value; Enabled?: Value; CustomerId?: Value; GenerateDistinctId?: Value; Tags?: List; Name?: Value; } export default class ApiKey extends ResourceBase { static StageKey: typeof StageKey; constructor(properties?: ApiKeyProperties); }