import { MaxHeightRatio } from '../dataset/enum/Common';
export interface IFooter {
    bottom?: number;
    inactiveAlpha?: number;
    maxHeightRadio?: MaxHeightRatio;
    disabled?: boolean;
    editable?: boolean;
    disabledPages?: number[];
}
