import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        companyName: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type BigFooterProps = typeof __propDef.props;
export declare type BigFooterEvents = typeof __propDef.events;
export declare type BigFooterSlots = typeof __propDef.slots;
export default class BigFooter extends SvelteComponentTyped<BigFooterProps, BigFooterEvents, BigFooterSlots> {
}
export {};
