import { type StyleProp, type ViewStyle } from "react-native"; interface LinesProps { numLines: number; containerHeight: number; lineHeight: number; lineStyle?: StyleProp; containerStyle?: StyleProp; renderTopLine?: boolean; } export default function Lines(props: LinesProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Lines.d.ts.map