import { type Notify as Content } from "../../../contexts/Notification";
import { Swipe } from "../../../hooks/useSwipe";
export interface Toast {
    list?: Content[];
    active?: boolean;
    width?: number;
    align?: "left" | "right";
    style?: object;
    swipe?: Swipe;
}
export default function Toast({ list, active, width, align, style, swipe }: Toast): false | import("react").JSX.Element | undefined;
//# sourceMappingURL=Toast.d.ts.map