import { AptlyBaseSchema } from './extends.js';
import { AptlyOrganizationSchema } from './organization.js';
import { AptlyProjectSchema } from './project.js';
export type AptlyCategory = AptlyCategorySchema<string, string>;
export interface AptlyCategorySchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
    organization: ID | null | AptlyOrganizationSchema<ID, DATE>;
    project: ID | null | AptlyProjectSchema<ID, DATE>;
}
