/// import { Toast } from './use-toast'; import { HuiThemesPalette } from '../themes'; import { NormalTypes } from '../utils/prop-types'; export declare const makeToastActions: (actions: Toast['actions'], cancelHandle: () => void) => JSX.Element[] | null; export declare const getColors: (palette: HuiThemesPalette, 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 {};