import { AptlyBaseSchema } from './extends.js';
export type AptlyOptionLabel = AptlyOptionLabelSchema<string, string>;
export interface AptlyOptionLabelSchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> {
organization?: ID;
project?: ID;
created: DATE;
}