export type PublicComponentSurfaceEntry = { slug: string; registryName: string; surface: "documented" | "standalone"; }; export declare const documentedPublicComponentSurfaces: readonly PublicComponentSurfaceEntry[]; export declare const standalonePublicComponentSurfaces: readonly PublicComponentSurfaceEntry[]; export declare const publicComponentSurfaceEntries: readonly PublicComponentSurfaceEntry[]; export declare const publicComponentSurfaceSlugs: string[]; export declare const publicComponentSurfaceSlugSet: Set; export declare const standalonePublicComponentSlugs: string[]; export declare const documentedPublicRegistrySurfaceNames: string[]; export declare const standalonePublicRegistrySurfaceNames: string[]; export declare const publicRegistrySurfaceNames: string[]; export declare function getPublicComponentSurfaceOrder(slug: string): number; export declare function isPublicComponentSurfaceSlug(slug: string): boolean; export declare function getPublicComponentRegistryName(slug: string): string | undefined; export declare function comparePublicComponentSurfaceOrder(leftSlug: string, rightSlug: string): number;