37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
import { PresenceComponent } from '@fluentui/react-motion';
|
|
|
|
/** A React component that applies collapse/expand transitions to its children. */
|
|
export declare const Collapse: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
export declare const CollapseExaggerated: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
export declare const CollapseSnappy: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
/** A React component that applies fade in/out transitions to its children. */
|
|
export declare const Fade: PresenceComponent< {}>;
|
|
|
|
export declare const FadeExaggerated: PresenceComponent< {}>;
|
|
|
|
export declare const FadeSnappy: PresenceComponent< {}>;
|
|
|
|
/** A React component that applies scale in/out transitions to its children. */
|
|
export declare const Scale: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
export declare const ScaleExaggerated: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
export declare const ScaleSnappy: PresenceComponent< {
|
|
animateOpacity?: boolean | undefined;
|
|
}>;
|
|
|
|
export { }
|