import { type Config } from '../types';
type Submission = {
    answer: string;
    day: `${number}`;
    level: 'a' | 'b';
};
export declare function submit(config: Config, submission: Submission): Promise<boolean>;
export {};
