export type TsxAllowUnknowProperties<T extends {}> = T & {
    [name: string]: any;
};
