import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {};
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export declare type FormContainerProps = typeof __propDef.props;
export declare type FormContainerEvents = typeof __propDef.events;
export declare type FormContainerSlots = typeof __propDef.slots;
export default class FormContainer extends SvelteComponentTyped<FormContainerProps, FormContainerEvents, FormContainerSlots> {
}
export {};
