import type { StoryObj } from "@storybook/react-vite";
import { EditableSection } from "./EditableSection";
type ThisStory = StoryObj<typeof EditableSection>;
declare const _default: {
    title: string;
    component: typeof EditableSection;
    parameters: {
        componentSubtitle: string;
    };
    argTypes: {
        title: {
            control: "text";
        };
        details: {
            control: "text";
        };
        className: {
            control: "text";
        };
        editIconVariant: {
            control: "select";
            options: string[];
        };
        accent: {
            control: "select";
            options: import("../..").Accent[];
        };
        disabled: {
            control: "boolean";
        };
    };
};
export default _default;
export declare const EditableSectionPreviewStory: ThisStory;
export declare const EditableSectionVariantsStory: ThisStory;
export declare const EditableSectionTestsStory: ThisStory;
//# sourceMappingURL=EditableSection.stories.d.ts.map