import React from 'react'; interface IButtonProps { landscape: boolean; updateLandscape: (value: boolean) => void; label: string; } export declare const Button: React.FC; export {};