export interface ParsedChunk {
    name: string;
    isCallable: boolean;
    template: string;
    arg: any;
}
export interface ParsedSentence {
    words: ParsedChunk[];
    template: string;
}
export declare const parse: ([...chunks]: TemplateStringsArray, ...variables: unknown[]) => ParsedSentence;
