export declare const useRetractableString: (original: string, retractable: string) => {
    text: string;
    retractString: () => void;
};
