carbon-react
Version:
A library of reusable React components for easily building user interfaces.
17 lines (16 loc) • 929 B
TypeScript
declare const StyledNoteContent: import("styled-components").StyledComponent<"div", any, {
hasPreview?: boolean;
}, never>;
declare const StyledNoteMain: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const StyledInlineControl: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const StyledTitleWrapper: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const StyledFooterContent: import("styled-components").StyledComponent<"div", any, {
hasName: boolean;
}, never>;
declare const StyledFooter: import("styled-components").StyledComponent<"div", any, {}, never>;
declare const StyledNote: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & {
width: number;
}, "theme">;
export { StyledNote, StyledNoteContent, StyledNoteMain, StyledInlineControl, StyledTitleWrapper, StyledFooter, StyledFooterContent, };