import { PlayableInput } from '.'; /** * Title input type * (GT or XAML) specific attributes */ export type TitleInput = PlayableInput & { fields: TitleField[]; }; /** * Title field type */ export type TitleField = { index: number; type: TitleFieldType; name: string; value: string; }; /** * Title field type */ export type TitleFieldType = 'image' | 'text'; //# sourceMappingURL=title.d.ts.map