import { IconSize } from '../../types'; /** * A custom hook which returns the pixel value of a tShirtSize. * @param {Object} [props] The props object * @param {String | Number} [props.size] The size of the svg container * @returns {Object} `{ sizeProps: Object }` */ interface UseTShirtSizeProps { size?: string | number; sizes?: Record; } interface SizeProps { size: IconSize; } declare const useTShirtSize: ({ size, sizes }: UseTShirtSizeProps) => { sizeProps: SizeProps; }; export default useTShirtSize;