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