import React from 'react'; interface Props { className?: string[] | string; aktivert: boolean; tekst?: string; } declare function Spinner(props: Props): React.JSX.Element | null; export { Spinner };