import { Cache, Config, Result } from '../AocClient.types';
export declare function getInput(config: Config, cache: Cache): Promise<string>;
declare type Params = {
    part: Result;
    answer: Result;
};
export declare const postAnswer: ({ part, answer }: Params, config: Config, cache: Cache) => Promise<{
    correct: boolean;
}>;
export {};
