import { Component } from 'react'; import type { BylineProps } from './props'; /** --- category: components --- **/ declare class Byline extends Component { static readonly componentId = "Byline"; static allowedProps: readonly (keyof { children: React.ReactNode; title?: React.ReactNode; description?: string | React.ReactNode; alignContent?: "top" | "center"; margin?: import("@instructure/emotion").Spacing; size?: "small" | "medium" | "large"; elementRef?: (element: Element | null) => void; })[]; static defaultProps: { alignContent: string; }; ref: Element | null; handleRef: (el: Element | null) => void; componentDidMount(): void; componentDidUpdate(): void; render(): import("@emotion/react/jsx-runtime").JSX.Element; } export default Byline; export { Byline }; //# sourceMappingURL=index.d.ts.map