/// interface IProps { message: string; reset: any; type?: string; } declare function Error(props: IProps): JSX.Element; declare function Success(props: IProps): JSX.Element; declare const _default: { Error: typeof Error; Success: typeof Success; }; export default _default;