import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        terms: string[];
        scroll?: boolean | undefined;
    };
    events: {
        click: CustomEvent<string>;
    } & {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type TermsProps = typeof __propDef.props;
export declare type TermsEvents = typeof __propDef.events;
export declare type TermsSlots = typeof __propDef.slots;
export default class Terms extends SvelteComponentTyped<TermsProps, TermsEvents, TermsSlots> {
}
export {};
