import { type LogoProps } from './types';
export type { LogoProps };
/**
 * These are the default parameters for LogoProps if the user does not specify values.
 */
export declare const defaultLogoParams: Partial<LogoProps>;
export declare const legacyDefaultLogoParams: {
    iconGradientStart: string;
    iconGradientStop: string;
};
/**
 * The props for the <Wrapper /> that takes the svg and turns it into a component.
 */
export type WrapperProps = LogoProps & {
    svg: string;
};
