type UseRotatingLabelArgs = { label?: string | string[]; delay: number; }; /** Returns a label from a set of labels */ declare const useRotatingLabel: ({ label, delay }: UseRotatingLabelArgs) => string | undefined; export { useRotatingLabel };