export type GetAppParams = {
    id: number;
    fields?: string;
    version?: "1.0" | "1.1";
};
export type SearchAppsParams = {
    query: string;
    limit?: number;
};
export type AppData = {
    name: string;
    url?: string;
    category?: string;
    description?: string;
};
export type FieldData = {
    name: string;
    type: "text" | "number" | "boolean" | "date" | "select";
    options?: string[];
};
