/// <reference types="react" />
interface IAccordionProps {
    active: boolean;
    initialHeight: number;
    forwardedRef: React.RefObject<any>;
}
export declare const Wrapper: import("styled-components").StyledComponent<"div", any, IAccordionProps, never>;
export declare const Header: import("styled-components").StyledComponent<"div", any, {
    active: boolean;
}, never>;
export declare const Content: import("styled-components").StyledComponent<"div", any, {
    className: "content";
}, "className">;
export {};
