import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        maxRotation?: number;
        setBrightness?: boolean;
        class?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type TiltProps = typeof __propDef.props;
export type TiltEvents = typeof __propDef.events;
export type TiltSlots = typeof __propDef.slots;
export default class Tilt extends SvelteComponentTyped<TiltProps, TiltEvents, TiltSlots> {
}
export {};
