import React from 'react'; import { CSS } from '../theme/stitches.config'; interface Props { isExpanded?: boolean; animated?: boolean; delay?: number; css?: CSS; } declare const defaultProps: { isExpanded: boolean; animated: boolean; delay: number; }; export declare type ExpandProps = Props & typeof defaultProps; declare const _default: React.ComponentType & Omit, "animated" | "isExpanded" | "delay">>; export default _default;