import { FC } from 'react';
import { Layout } from '../../../types';
declare type Props = {
    type: Layout;
    size: number;
    borderRadius: number;
    colors: string[];
    zeroPoint?: number;
};
declare const Rail: FC<Props>;
export default Rail;
