import React from 'react'; import { type DefaultComponentType, type FlexAllProps } from 'reflexy/styled'; import { type HideableProps, type TransitionComponent } from '../TransitionWrapper'; export type { TransitionComponent, HideableProps }; export declare function NoTransition({ children }: React.PropsWithChildren): React.ReactNode; export type TransitionFlexProps = FlexAllProps & HideableProps; /** * The component must accept `ref` prop. * Default transition is `Fade`. */ declare function TransitionFlex({ component, style, className, ...rest }: TransitionFlexProps): React.JSX.Element; declare const _default: typeof TransitionFlex; export default _default;