import { Context, Schema } from 'koishi';
export declare const name = "fortune-wheel";
export declare const using: string[];
export interface Config {
    turntables: Turntable[];
    spinningGifUrl: string;
    delay: number;
}
interface Turntable {
    name: string;
    command: string;
    options: string[];
}
export declare const schema: Schema<Config>;
export declare function apply(ctx: Context, config: Config): void;
export {};
