exportinterfaceUseTextDirectionOptions {/** * The target element to set the text direction attribute. * * @defaultValue 'html' */target?: ElementTarget/** * The initial text direction value. * * @defaultValue 'ltr' */initialValue?: UseTextDirectionValue}
exporttypeUseTextDirectionReturns= [/** * The current text direction value. */dir: UseTextDirectionValue,/** * Sets the text direction value. */setDir: ReactSetState<UseTextDirectionValue>,]