import { type FieldProcessor } from '@ephox/boulder'; import { type AlloyBehaviourRecord, type NamedConfiguredBehaviour } from '../behaviour/Behaviour'; export interface SketchBehaviours { dump: AlloyBehaviourRecord; } declare const field: (name: string, forbidden: Array<{ name: () => string; }>) => FieldProcessor; declare const get: (data: SketchBehaviours) => AlloyBehaviourRecord; declare const augment: (data: SketchBehaviours, original: Array>) => AlloyBehaviourRecord; export declare const SketchBehaviours: { field: (name: string, forbidden: Array<{ name: () => string; }>) => FieldProcessor; augment: (data: SketchBehaviours, original: Array>) => AlloyBehaviourRecord; get: (data: SketchBehaviours) => AlloyBehaviourRecord; }; export { field, get, augment }; //# sourceMappingURL=SketchBehaviours.d.ts.map