export interface Props { /** Whether the dialog is open */ isOpen: boolean; /** Callback to close the dialog */ onclose: () => void; /** Callback when room is created */ oncreate: (params: { name: string; roomType: string; description: string; }) => void; } declare const RoomCreateDialog: import("svelte").Component; type RoomCreateDialog = ReturnType; export default RoomCreateDialog; //# sourceMappingURL=RoomCreateDialog.svelte.d.ts.map