export declare class Space { /** * Output only. The display name (only if the space is a room). */ private displayName?; /** * Resource name of the space, in the form "spaces/*". Example: * spaces/AAAAMpdlehYs */ private name?; /** * Output only. The type of a space. */ private type?; getDisplayName(): string; getName(): string; getType(): string; }