import React from 'react'; import { type IconProps } from '../Icon/Icon'; export type Tone = 'neutral' | 'info' | 'ai' | 'positive' | 'warning' | 'critical'; export type Size = 'small' | 'base' | 'medium' | 'large'; export type IconTileProps = Omit & { /** * @default 'base' */ size?: Size; /** * @default 'neutral' */ tone?: Tone; }; /** * Requires `@preply/ds-rn-lib/dist/assets/PreplyDSIcons.ttf` font to be included in the project. * * @example * ```tsx * * ``` */ export declare const IconTile: ({ size, tone, testID, ...iconProps }: IconTileProps) => React.JSX.Element; //# sourceMappingURL=IconTile.d.ts.map