/** * */ export interface GroupFooterProps { /** * */ alignSelf?: string; /** * */ alwaysOnTop?: boolean | number; /** * */ ariaAttributes?: any; /** * */ ariaDescribedBy?: string; /** * */ ariaLabel?: string; /** * */ ariaLabelledBy?: string; /** * */ axisLock?: boolean; /** * TODO remove */ bind?: object | string; /** * TODO change to style */ border?: boolean; /** * */ bottom?: number | string; /** * */ centered?: boolean; /** * */ disabled?: boolean; /** * */ displayed?: boolean; /** * */ docked?: "top" | "right" | "bottom" | "left"; /** * TODO change to style */ height?: number | string; /** * TODO change to style */ left?: number | string; /** * TODO change to style */ right?: number | string; /** * TODO change to style */ style?: string | object; /** * TODO change to style */ top?: number | string; /** * TODO change to style */ width?: number | string; /** * TODO remove this! */ xtype?: string; /** * TODO change to style */ zIndex?: number; } export default GroupFooterProps;