export default function getWidth(width: unknown): {
    width: string | number;
} | {
    width?: undefined;
};
