import type { ImageProps } from './type'; declare type ExtraProps = Pick; declare const createStyles: (themeVar: DiceUI.Theme, { round, radius }: ExtraProps) => { errorIcon: { color: string; fontSize: number; }; hintText: { color: string; fontSize: number; lineHeight: number; padding: number; textAlign: "center"; }; hintWrapper: { alignItems: "center"; bottom: number; justifyContent: "center"; left: number; position: "absolute"; right: number; top: number; }; image: { height: string; width: string; }; loadingIcon: { color: string; fontSize: number; }; wrapper: { borderRadius: number | undefined; height: number; overflow: "hidden"; position: "relative"; width: number; }; wrapperBg: { backgroundColor: string; }; }; export default createStyles;