import { CSSProperties, FC } from "react"; import { IBoxProps } from "../../../styling/box/_types/IBoxProps"; /** * A react component that can animate between any 2 possible css widths including auto */ export declare const AnimateWidth: FC<{ /** The current css width of the element */ width: CSSProperties["width"]; /** The initial width of the element */ initialWidth?: number; /** The transition duration */ duration?: number; /** Any additional props to put on the container element */ containerProps?: IBoxProps; /** Any additional props to put on the inner element */ innerProps?: IBoxProps; }>; //# sourceMappingURL=AnimateWidth.d.ts.map