import { TypeAnnotation, UUID } from '..'; export declare type FunctionTypeTypeAnnotation = { type: 'functionType'; data: { id: UUID; returnType: TypeAnnotation; argumentTypes: TypeAnnotation[]; }; };