import { PropsWithChildren, FC } from "react"; export interface ScaleProps extends PropsWithChildren<{}> { in: boolean; timeout?: number; onExited?: () => void; unmountOnExit?: boolean; } declare const Scale: FC; export default Scale;