type $$ComponentProps = {
    title: string;
    content: string;
    open?: boolean;
    onexpand?: () => void;
    oncollapse?: () => void;
};
declare const AccordionTestWrapper: import("svelte").Component<$$ComponentProps, {}, "open">;
type AccordionTestWrapper = ReturnType<typeof AccordionTestWrapper>;
export default AccordionTestWrapper;
