/**
 * A horizontal rule used to separate sections within panels.
 *
 * @remarks
 * - Renders a full-width `<hr>` without default borders.
 * - Uses a light top border and subtle box-shadow for depth.
 * - Provides consistent vertical spacing (`4px 0`).
 *
 * @example
 * ```tsx
 * <ScorePanel>
 *   <StatRow>…</StatRow>
 *   <Divider />
 *   <StatRow>…</StatRow>
 * </ScorePanel>
 * ```
 *
 * @returns A styled `<hr>` element.
 */
declare const Divider: import('styled-components').StyledComponent<"hr", any, {}, never>;
export default Divider;
//# sourceMappingURL=Divider.d.ts.map