import { AbstractSpaceUpdate } from "./AbstractSpaceUpdate";
declare class SpaceCreate extends AbstractSpaceUpdate {
    /**
    * The account that the space belongs to.
    */
    'account': number;
    /**
    * The database the space is connected to and that holds the space's data.
    */
    'database'?: number;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { SpaceCreate };
