import { FunctionComponent } from 'react';

interface TickGroupProps {
    heading: string;
    ticks: string[];
}
declare const TickGroup: FunctionComponent<TickGroupProps>;

export { TickGroup as default };
export type { TickGroupProps };
