import { ComponentProps, FC } from 'react'; import { Color } from './types/color'; type Props = { color?: Color; light?: boolean; }; export declare const Notification: FC, keyof Props> & Props>; export {};