import * as React from 'react'; import { ReactNode } from 'react'; export declare enum ChipType { WARNING = "lightPink", OK = "lightGreen", NEUTRAL = "beige" } export interface ChipProps extends React.HTMLAttributes { /** Bruksområde som avgir hvilken farge chip-en får */ type?: ChipType; /** Størrelse på Chip */ size?: 'standard' | 'large'; /** aria-label */ ariaLabel?: string; /** Overstyring av stiler */ className?: string; children?: ReactNode; }