declare const secretKeyCheck: (secretKey?: string) => {
    found: boolean;
    error: {
        statusCode: number;
        message: string;
        code: string;
    };
} | {
    found: boolean;
    error: null;
};

export { secretKeyCheck };
