export declare const RESOURCE_TYPES: { readonly PROJECT_COMPONENT: "project-component"; readonly STYLEGUIDE_COMPONENT: "styleguide-component"; readonly SCREEN: "screen"; readonly INVALID: "invalid"; }; export type LinkProperties = { type: typeof RESOURCE_TYPES.PROJECT_COMPONENT; pid: string; coid: string; } | { type: typeof RESOURCE_TYPES.STYLEGUIDE_COMPONENT; stid: string; coid: string; } | { type: typeof RESOURCE_TYPES.SCREEN; pid: string; sid: string; } | { type: typeof RESOURCE_TYPES.INVALID; }; export declare function parseLink(link: string): LinkProperties; export declare function linkPropertiesToUrl(linkProperties: LinkProperties): string;