import { Type } from './Type'; interface Options { duration?: number; type?: Type; position?: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; } interface Alert extends Options { id: number; message: string; } export { type Alert, type Options }; //# sourceMappingURL=Alert.d.ts.map