import { FC, PropsWithChildren } from 'react'; import { ReminderStyledProps } from './styled'; export interface ReminderProps extends ReminderStyledProps { iconName?: string; iconSize?: number; iconClassType?: 'fill' | 'outlined' | 'round'; } export declare const Reminder: FC>;