baseui
Version:
A React Component library implementing the Base design language
16 lines (15 loc) • 833 B
TypeScript
import { IMAGE_LAYOUT, BACKGROUND_COLOR_TYPE } from './constants';
export declare const StyledRoot: import("styletron-react").StyletronComponent<"button", {
$backgroundColor: string;
$backgroundColorType: keyof typeof BACKGROUND_COLOR_TYPE;
$imageLayout: keyof typeof IMAGE_LAYOUT | undefined;
$isClickable: boolean;
}>;
export declare const StyledImage: import("styletron-react").StyletronComponent<"div", {
$src: string;
$imageLayout: keyof typeof IMAGE_LAYOUT;
$backgroundPosition: string;
}>;
export declare const StyledContentContainer: import("styletron-react").StyletronComponent<"div", {}>;
export declare const StyledHeadingContainer: import("styletron-react").StyletronComponent<"div", {}>;
export declare const StyledParagraphContainer: import("styletron-react").StyletronComponent<"div", {}>;