export type TSchemataTriggerParentType = 'table' | 'view'; export type TSchemataTrigger = { parentSchema: string; parentName: string; parentType: TSchemataTriggerParentType; schema: string; trigger: string; enabled: boolean; onupdate: boolean; ondelete: boolean; oninsert: boolean; after: boolean; insteadof: boolean; replication: boolean; }; export declare function Info(base: string, schemas?: string[], trigger?: string[]): string; //# sourceMappingURL=trigger.d.ts.map