import type { NotyOptions, NotyPosition } from './types'; export declare function setNotyDefault(ops: Partial): void; export declare function findContainer(position: NotyPosition, element: HTMLElement | ShadowRoot): HTMLElement; export declare function useInternalNoty(ops?: Partial, container?: HTMLElement): () => void; export declare namespace useInternalNoty { var success: (ops?: Partial | undefined, container?: HTMLElement | undefined) => void; var error: (ops?: Partial | undefined, container?: HTMLElement | undefined) => void; var warning: (ops?: Partial | undefined, container?: HTMLElement | undefined) => void; var info: (ops?: Partial | undefined, container?: HTMLElement | undefined) => void; }