import { ResourceBase } from '../resource'; import { Value } from '../dataTypes'; export declare class Location { Path?: Value; Type?: Value; Method?: Value; StatusCode?: Value; Name?: Value; constructor(properties: Location); } export interface DocumentationPartProperties { RestApiId: Value; Properties: Value; Location: Location; } export default class DocumentationPart extends ResourceBase { static Location: typeof Location; constructor(properties: DocumentationPartProperties); }