import NightingaleBaseElement, { Constructor } from "../../nightingale-base-element";
export declare class WithDimensionsInterface {
    width: number;
    height: number;
}
declare const withDimensions: <T extends Constructor<NightingaleBaseElement>>(superClass: T, options?: {
    width?: number;
    height?: number;
}) => Constructor<WithDimensionsInterface> & T;
export default withDimensions;
//# sourceMappingURL=index.d.ts.map