import { AnnotationBase } from "../Annotations/AnnotationTypes";
import { LayoutMode } from "../Annotations/types";
export type AcroFormsMsg = {
    type: 'reset';
};
export type AcroFormModel = {
    layoutMode: LayoutMode;
    expandedPageIndex: number;
    expandedAnnotationIds: any;
    selectedAnnotationId: string;
    data: {
        pageIndex: number;
        annotations: AnnotationBase[];
    }[] | null;
};
