import { ICommonProps, SizeUnit } from "../core-types"; import * as React from "react"; interface IFixedProps extends ICommonProps { width?: SizeUnit; height: SizeUnit; } export declare const Fixed: React.FC; export {};