import type { SessionInfo } from '../../molecules/SessionRow/SessionRow.svelte'; interface SessionsPageProps { title?: string; description?: string; sessions?: SessionInfo[]; class?: string; onrevoke?: (id: string) => void; onrevokeothers?: () => void; } declare const SessionsPage: import("svelte").Component; type SessionsPage = ReturnType; export default SessionsPage;