import type { HeadingVariant } from '@preply/ds-core'; type LettersCutStyle = { paddingTop: number; marginTop: number; paddingBottom: number; marginBottom: number; paddingLeft: number; marginLeft: number; paddingRight: number; marginRight: number; }; /** * Use a mix of positive padding and negative margin to avoid special letters to be cut. * * Line height on RN could cuts some special letters, and it's a known bug. Here's the solution applied * @see https://github.com/facebook/react-native/issues/29507#issuecomment-665147452 * * They fixed it with RN 0.76.0 for Android, but the iOS PR is, at the time of writing, still open * @see https://github.com/facebook/react-native/pull/46884 */ export declare const lettersCutStyleByVariant: Record; export {}; //# sourceMappingURL=lettersCutStyleByVariant.d.ts.map