import React from 'react'; import zod from 'zod'; import { type infer as zInfer } from 'zod'; export declare const description = "A apply command to run the TF file"; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; local: zod.ZodOptional; template: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; template?: string | undefined; local?: boolean | undefined; }, { apiKey?: string | undefined; template?: string | undefined; local?: boolean | undefined; }>; type Props = { readonly options: zInfer; }; export default function Apply({ options: { apiKey, local, template } }: Props): React.JSX.Element; export {};