import * as React from 'react'; interface LoadingLineProps { /** The color of each line * @default #f5f5f5 */ color?: string; /** Width in rems * @default 5 */ widthRem?: number; /** * Rems to randomize the width of each line by. Will randomize on every * render. * @default 0 */ randomizeWidthBy?: number; /** How many lines to render * @default 1 */ count?: number; /** The height of each line, in pixels * @default 16 */ heightPx?: number; /** Optional className to apply to each line */ className?: string; style?: any; } export declare const LoadingLine: React.FC; export declare function randomizeWithinRange(value: number, range: number): number; export {};