import * as React from 'react'; import { ViewProps } from 'react-native'; import { Item, UseToasterParams, StaticMethods } from './useToaster'; interface ToasterProps extends UseToasterParams { containerViewProps?: ViewProps; children?: (item: Item) => React.ReactNode; } export declare const Toaster: React.FC & StaticMethods; export {};