import { Context, InputOf, InputGetCode } from '~server/data/interfaces'; declare const _default: { getCode: (_: any, { input }: InputOf, context: Context) => Promise<{ status: boolean; data?: undefined; } | { status: boolean; data: { lines: string[]; }; }>; }; export default _default;