import React from 'react'; export interface PadProps { length: number; active: boolean; } export declare const Pad: ({ length, active }: PadProps) => React.JSX.Element | null;