import React from 'react'; import { Variants } from 'framer-motion'; import type { DrawerPlacement } from './interface'; export declare function drawerAnimation(placement?: DrawerPlacement): Variants; export declare const maskAnimation: Variants; export declare const DRAWER_NAMESPACE = "Drawer"; export declare const DRAWER_LOCAL: { en_us: { OK_TEXT: string; CANCEL_TEXT: string; }; zh_cn: { OK_TEXT: string; CANCEL_TEXT: string; }; }; export declare const duration1: { duration: number; }; export declare const duration2: { ease: string; duration: number; }; export declare const sentinelStyle: React.CSSProperties;