import type { ITextstring, TextstringReplacement } from '../components/textstring/types'; export interface UseTextstringValue { textstring: ITextstring; replacements?: TextstringReplacement; } export declare const useTextstringValue: ({ replacements, textstring }: UseTextstringValue) => string;