export declare const DASHBOARD_URL_PREFIX = "/dashboard"; export declare const ALL_SANDBOXES_URL_PREFIX = "/dashboard/sandboxes"; export declare const sandboxes: (path: string, teamId?: string | null) => string; export declare const drafts: (teamId?: string | null) => string; export declare const myContributions: (teamId?: string | null) => string; export declare const repositories: (teamId?: string | null) => string; export declare const repository: ({ owner, name, teamId, }: { owner: string; name: string; teamId?: string | null; }) => string; export declare const syncedSandboxes: (teamId?: string | null) => string; export declare const templates: (teamId?: string | null) => string; export declare const recent: (teamId?: string | null, extraParams?: Record) => string; export declare const deleted: (teamId?: string | null) => string; export declare const shared: (teamId?: string | null) => string; export declare const liked: (teamId?: string | null) => string; export declare const settings: (teamId?: string | null) => string; export declare const registrySettings: (teamId?: string | null) => string; export declare const permissionSettings: (teamId?: string | null) => string; export declare const search: (query: string, teamId?: string | null) => string; export declare const discover: (teamId?: string | null, albumId?: string) => string; export declare const discoverSearch: (query: string, teamId?: string | null) => string; type ProPathParams = { workspaceId?: string; source?: string; }; export declare const proUrl: ({ workspaceId, source }?: ProPathParams) => string; export {};