/// import type { CB_STYLE_PROP_TEXT_SPECS } from '../types'; import type { CB_BTN_PROPERTIES_TYPE, Device, IndexForIntersection } from '../../../../../../../DynamicLayout/sections/CustomSection/util/types'; type Props = CB_BTN_PROPERTIES_TYPE & IndexForIntersection; declare function Button(props: Props): JSX.Element; export declare function getTextStyles(props: CB_STYLE_PROP_TEXT_SPECS, device: Device): { style: import("styled-components").CSSProperties; hoverStyle: import("styled-components").CSSProperties; }; export default Button;