import React from "react";
interface Props {
    icon: React.FC<React.SVGProps<SVGSVGElement>>;
    label: string;
    onClick: () => void;
}
export declare const SeekButton: React.FC<Props>;
export {};
