export type FunctionTemplateProps = { FC_PROPS: string; FC_BODY: string; FC_GEN: string; FC_RETURN: string; FC_ASYNC: string; FC_DOC: string[]; }; declare function functionTemplate(FC_NAME: string, props: Partial): string; declare function functionInterfaceTemplate(FC_NAME: string, props: Partial): string; declare function abstractInterfaceTemplate(FC_NAME: string, props: Partial): string; declare function reqBody(rType: string, path: string, paramKey: string[], hasBody: boolean, type: string, bodyType: string, queryKey: string[]): string; export { functionTemplate, reqBody, functionInterfaceTemplate, abstractInterfaceTemplate, };