export interface IFormQuery {
    includeTodayCount?: boolean;
}
export interface IWebhook {
    url: string;
    handshakeKey?: string;
    metadata?: boolean;
}
interface ISubField {
    DefaultVal: string;
    ID: string;
    Label: string;
}
export interface IField {
    Title: string;
    Instructions: string;
    IsRequired: number;
    ClassNames: string;
    DefaultVal: string;
    Page: number;
    Type: string;
    ID: string;
    SubFields: [ISubField];
}
export {};
//# sourceMappingURL=Interface.d.ts.map