import { Toast } from "./use-toast"; import React from 'react'; import { GeistUIThemesPalette } from "../themes"; import { NormalTypes } from "../utils/prop-types"; export declare const makeToastActions: (actions: Toast['actions'], cancelHandle: () => void) => React.JSX.Element[] | null; export declare const getColors: (palette: GeistUIThemesPalette, type?: NormalTypes) => { bgColor: string; color: string; }; declare const toastPlacement: ["topLeft", "topRight", "bottomLeft", "bottomRight"]; export type ToastPlacement = typeof toastPlacement[number]; export declare const isTopPlacement: (placement: ToastPlacement) => boolean; export declare const isLeftPlacement: (placement: ToastPlacement) => boolean; export declare const getTranslateByPlacement: (placement: ToastPlacement) => { enter: string; leave: string; }; export {};