export type RegisterParams = { add?: string; remove?: string; }; export type RegisterType = (params: RegisterParams) => void; export type UseAriaIdsHook = (otherAriaIds?: string) => [string[], RegisterType]; declare const useAriaIds: UseAriaIdsHook; export default useAriaIds;