import React from 'react'; import zod from 'zod'; import { type infer as zInfer } from 'zod'; export declare const description = "A simple command which lists all the terraform templates available."; export declare const options: zod.ZodObject<{ apiKey: zod.ZodOptional; }, "strip", zod.ZodTypeAny, { apiKey?: string | undefined; }, { apiKey?: string | undefined; }>; type Props = { readonly options: zInfer; }; export default function List({ options: { apiKey } }: Props): React.JSX.Element; export {};