export type ToastPlacement = 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight'; export declare const isTopPlacement: (placement: ToastPlacement) => boolean; export declare const isLeftPlacement: (placement: ToastPlacement) => boolean; export declare const isBottomPlacement: (placement: ToastPlacement) => boolean; export declare const getTranslateByPlacement: (placement: ToastPlacement) => { enter: string; leave: string; };