import type { ErrorType } from '../../errors/utils.js'; export type ExtractFunctionPartsErrorType = ErrorType; export declare function extractFunctionParts(def: string): { type: string | undefined; name: string | undefined; params: string | undefined; }; export type ExtractFunctionNameErrorType = ErrorType; export declare function extractFunctionName(def: string): string | undefined; export type ExtractFunctionParamsErrorType = ErrorType; export declare function extractFunctionParams(def: string): { indexed?: boolean | undefined; type: string; name: string; }[] | undefined; export type ExtractFunctionTypeErrorType = ErrorType; export declare function extractFunctionType(def: string): string | undefined; //# sourceMappingURL=extractFunctionParts.d.ts.map