import React from "react"; export interface PoweredByProps { label: React.ReactNode; linkUrl: string; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default purple-60 */ labelColor?: string; /** * To use colors from theme, follow format -> $name-$value (e.g. purple-100). * Regular color names and hash values are also supported. * @default purple-60 */ logoColor?: string; logoWidth?: string; logoHeight?: string; } export declare const PoweredBy: ({ label, linkUrl, labelColor, logoColor, logoWidth, logoHeight }: PoweredByProps) => JSX.Element; export declare const HireLogo: ({ color, width, height }: { color: string; width?: string | undefined; height?: string | undefined; }) => JSX.Element;