import React from 'react'; import zod from 'zod'; export declare const description = "Connect a GitHub repository to a permit Environment"; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; inactive: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; inactive?: boolean | undefined; }, { apiKey?: string | undefined; inactive?: boolean | undefined; }>; type Props = { options: zod.infer; }; export default function GitHub({ options }: Props): React.JSX.Element; export {};