export declare type Position = 'top' | 'right' | 'bottom' | 'left'; export interface TransitionProps { readonly animated?: boolean; readonly fade?: boolean | Position; readonly slide?: boolean | Position; readonly expand?: boolean | 'center' | Position; } export declare const hasTransition: (props: TransitionProps) => boolean; export declare const getTransitionArray: (props: TransitionProps) => (boolean | "bottom" | "left" | "right" | "top" | "center" | undefined)[]; export declare const excludeTransition: (props: T) => Pick>; export declare const translate3d: (x?: string | number | undefined, y?: string | number | undefined, z?: string | number | undefined) => string; export declare const origin: (x?: string | number, y?: string | number) => string; export declare const calc: (a?: string | number | undefined, b?: string | number | undefined) => string; export declare const minus: (v?: string | number | undefined) => string; export interface ExpandProps { readonly expand?: boolean | 'center' | Position; readonly defaultExpand?: boolean | Position; } export declare const expand:

(props?: P | undefined) => ((props?: Props | undefined) => Props[keyof Props] | undefined) | ((props?: Props_1 | undefined) => string | Props_1[keyof Props_1]); export interface SlideProps { readonly slide?: boolean | Position; readonly defaultSlide?: boolean | Position; readonly slideOffset?: number | string; } export declare const slide:

(props?: P | undefined) => ((props?: Props | undefined) => Props[keyof Props] | undefined) | ((props?: Props_1 | undefined) => string | Props_1[keyof Props_1]); export declare const scaleWithProps:

(props?: P | undefined) => string | undefined; export interface OriginProps { readonly originX?: number | string; readonly originY?: number | string; } export declare const originWithProps:

(props?: P | undefined) => (props?: P_1 | undefined) => string; export interface TranslateProps { readonly translateX?: number | string; readonly translateY?: number | string; } export declare const translateWithProps:

(props?: P | undefined) => string; export declare const slideWithProps:

(props?: P | undefined) => (props?: P_1 | undefined) => string;