import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export interface UsagePlanKeyProperties {
    KeyId: Value<string>;
    KeyType: Value<string>;
    UsagePlanId: Value<string>;
}
export default class Inner_UsagePlanKey extends ResourceBase<UsagePlanKeyProperties> {
    constructor(properties: UsagePlanKeyProperties);
}
