import { Context, InputGenerateSpace } from '~server/data/interfaces'; export declare const generateSpaceLogs: { infoStart: string; infoSuccess: string; infoEnd: string; errorEnd: string; infoHandlePrivateUsage: string; infoEndPrivateUsage: string; infoSuccessPrivateUsage: string; infoHandleCustomLogicUsage: string; infoEndCustomLogicUsage: string; infoSuccessCustomLogicUsage: string; }; declare const generateSpace: (input: InputGenerateSpace, context: Context) => Promise<{ status: boolean; data?: undefined; } | { status: boolean; data: import("~server/data/interfaces").Space; }>; export default generateSpace;