import type { CharacterfileSchema } from '@base/config/schema';
export declare const getProjectDashboardUrl: (projectId?: string) => string | undefined;
export type AgentSocialLink = {
    type: 'x' | 'github';
    url: string;
    label: string;
    username: string;
};
export declare const getAgentSocialLinksFromCharacterfile: (characterFile?: CharacterfileSchema) => AgentSocialLink[];
export declare const createUrlFromHostname: (hostname: string) => string;
export declare const hasValidRedirectionUrl: () => boolean;
