import { HTMLAttributes } from 'react'; import { GenericModalProps } from '..'; export interface SuggestionModalProps extends HTMLAttributes, GenericModalProps { title?: string; size?: 's' | 'm'; suggestion: string; zIndex?: number; } //# sourceMappingURL=SuggestionModal.props.d.ts.map