import { NamedStructure } from "./../base";
export interface TypeParameterDeclarationStructure extends NamedStructure {
    constraint?: string;
}
