export interface PromptProvider {
    expandPrompt(input: string, options?: {
        mode?: 'partial';
    }): Promise<string>;
}
