import { WebToastProps } from "../../types";
type ToastNativeProps = Partial<WebToastProps>;
declare function show(option: ToastNativeProps | string): void;
declare function config(config: ToastNativeProps): void;
declare const _default: {
    show: typeof show;
    config: typeof config;
    clear(): void;
};
export default _default;
