import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: never;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type SectionDividerProps = typeof __propDef.props;
export type SectionDividerEvents = typeof __propDef.events;
export type SectionDividerSlots = typeof __propDef.slots;
export default class SectionDivider extends SvelteComponentTyped<SectionDividerProps, SectionDividerEvents, SectionDividerSlots> {
}
export {};
