export declare function shouldShowFeedbackHint(): boolean; export declare function markFeedbackHintShown(): void; export declare function parseRepoSlug(url: unknown): string | undefined; export declare function getGitHubRepo(): string; interface FeedbackInput { type: "feedback" | "feature_request" | "bug"; title: string; description: string; workflowContext?: string; } interface EnvironmentInfo { serverVersion: string; platform: string; deviceType: string | undefined; licenseTier: string; } export declare function formatIssueBody(input: FeedbackInput, env: EnvironmentInfo): string; export declare function buildGitHubUrl(title: string, type: FeedbackInput["type"]): string; export {}; //# sourceMappingURL=feedback.d.ts.map